type github.com/jackc/pgx/v5/pgtype.byteSliceWrapper

12 uses

	github.com/jackc/pgx/v5/pgtype (current package)
		builtin_wrappers.go#L669: type byteSliceWrapper []byte
		builtin_wrappers.go#L671: func (w byteSliceWrapper) SkipUnderlyingTypePlan() {}
		builtin_wrappers.go#L673: func (w *byteSliceWrapper) ScanText(v Text) error {
		builtin_wrappers.go#L679: 	*w = byteSliceWrapper(v.String)
		builtin_wrappers.go#L683: func (w byteSliceWrapper) TextValue() (Text, error) {
		builtin_wrappers.go#L691: func (w *byteSliceWrapper) ScanUUID(v UUID) error {
		builtin_wrappers.go#L696: 	*w = make(byteSliceWrapper, 16)
		builtin_wrappers.go#L701: func (w byteSliceWrapper) UUIDValue() (UUID, error) {
		pgtype.go#L651: 		return &wrapByteSliceScanPlan{}, (*byteSliceWrapper)(target), true
		pgtype.go#L884: 	return plan.next.Scan(src, (*byteSliceWrapper)(dst.(*[]byte)))
		pgtype.go#L1508: 		return &wrapByteSliceEncodePlan{}, byteSliceWrapper(value), true
		pgtype.go#L1743: 	return plan.next.Encode(byteSliceWrapper(value.([]byte)), buf)